home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’95 / NetFractal™ / Fractal 8 source / OutPoint.h < prev    next >
Encoding:
Text File  |  1995-06-24  |  376 b   |  30 lines  |  [TEXT/MPCC]

  1. //    OutPoint.h
  2.  
  3. #pragma once
  4.  
  5. #include "NetPoint.h"
  6.  
  7.  
  8. class OutPoint :
  9.     public NetPoint
  10.  
  11. {
  12. protected:
  13.     union {
  14.         InetAddress    inet;
  15.     }            fHisAddress;
  16.     long        fHisAddressSize;
  17. public:
  18.  
  19.                             OutPoint(
  20.                                 const char *protocol,
  21.                                 const char *address,
  22.                                 short port);
  23.                             ~OutPoint();
  24.  
  25.     virtual OSErr            SendData(
  26.                                 const void *data,
  27.                                 long size);
  28. };
  29.  
  30.